home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC User 2001 August
/
APC_Aug2001_CD2.iso
/
features
/
web_dev
/
files
/
mwjpp516.exe
/
%MAINDIR%
/
Tools
/
Misc
/
insert doubleParenth.script
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2001-06-19
|
383 b
|
16 lines
!!Script
// Script by Will Hains
// Wrap selection with ( ... ) - also works for an insertion caret
var editor = getActiveEditor();
if (editor)
{
var selection = editor.getSelection();
editor.insert(selection.endLineIndex, selection.endCharIndex, ")");
editor.insert(selection.startLineIndex, selection.startCharIndex, "(");
editor.setActive();
}
!!/Script